d33f4db130d4379fa3ab7320ccf118a94c17b889,modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/twostep/GridMapQueryExecutor.java,GridMapQueryExecutor,reservePartitions,#Collection#AffinityTopologyVersion#number[]#List#,269
Before Change
if (cctx == null) // Cache was not found, probably was not deployed yet.
return false;
if (cctx.isLocal())
continue;
// For replicated cache topology version does not make sense.
After Change
if (cctx == null) // Cache was not found, probably was not deployed yet.
return false;
if (cctx.isLocal() || !cctx.rebalanceEnabled())
continue;
// For replicated cache topology version does not make sense.